home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / memcmp.c,v < prev    next >
Text File  |  1989-03-22  |  1KB  |  67 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.06.18;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.10.03.18.15.24;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/*
  30.  * Copyright (c) 1985 Regents of the University of California.
  31.  * All rights reserved.
  32.  *
  33.  * Redistribution and use in source and binary forms are permitted
  34.  * provided that this notice is preserved and that due credit is given
  35.  * to the University of California at Berkeley. The name of the University
  36.  * may not be used to endorse or promote products derived from this
  37.  * software without specific written prior permission. This software
  38.  * is provided ``as is'' without express or implied warranty.
  39.  */
  40.  
  41. #if defined(LIBC_SCCS) && !defined(lint)
  42. static char sccsid[] = "@@(#)memcmp.c    5.3 (Berkeley) 5/25/88";
  43. #endif /* LIBC_SCCS and not lint */
  44.  
  45. #include <string.h>
  46.  
  47. int
  48. memcmp(s1, s2, n)
  49.     register char *s1, *s2;
  50.     register n;
  51. {
  52.     while (--n >= 0)
  53.         if (*s1++ != *s2++)
  54.             return (*--s1 - *--s2);
  55.     return (0);
  56. }
  57. @
  58.  
  59.  
  60. 1.1
  61. log
  62. @Initial revision
  63. @
  64. text
  65. @d17 3
  66. @
  67.